home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Creative Computers
/
Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso
/
shareware
/
music
/
delitracker_1.36
/
rexx
/
dt_songend.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-11-17
|
213b
|
19 lines
/* DeliTracker - toggles songend */
address 'rexx_DT'
options results
status G end
if result == "no" then do
SongEnd yes
say "Songend is now on..."
end
else do
SongEnd no
say "Songend is now off..."
end